home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / ABORT.C next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  125 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. void abort()
  4.     {
  5.     fputs("Abnormal program termination\n", stderr);
  6.     fflush(stderr);
  7.     _exit(3);
  8.     }
  9.